home *** CD-ROM | disk | FTP | other *** search
- on initBin
- global gSDBinGrid, gSDBinPiece
- set gSDBinGrid to ["1": rect(0, 0, 61, 61), "2": rect(60, 0, 121, 61), "3": rect(0, 60, 61, 121), "4": rect(60, 60, 121, 121), "5": rect(0, 120, 61, 181), "6": rect(60, 120, 121, 181), "7": rect(0, 180, 61, 241), "8": rect(60, 180, 121, 241), "9": rect(0, 240, 61, 301), "10": rect(60, 240, 121, 301), "11": rect(0, 300, 61, 361), "12": rect(60, 300, 121, 361), "13": rect(0, 360, 61, 421), "14": rect(60, 360, 121, 421), "15": rect(60, 420, 121, 481), "16": rect(140, 419, 201, 480), "17": rect(200, 419, 261, 480), "18": rect(260, 419, 321, 480), "19": rect(320, 419, 381, 480), "20": rect(380, 419, 441, 480), "21": rect(440, 419, 501, 480), "22": rect(519, 0, 580, 61), "23": rect(579, 0, 640, 61), "24": rect(519, 60, 580, 121), "25": rect(579, 60, 640, 121), "26": rect(519, 120, 580, 181), "27": rect(579, 120, 640, 181), "28": rect(519, 180, 580, 241), "29": rect(579, 180, 640, 241), "30": rect(519, 240, 580, 301), "31": rect(579, 240, 640, 301), "32": rect(519, 300, 580, 361), "33": rect(579, 300, 640, 361), "34": rect(519, 360, 580, 421), "35": rect(579, 360, 640, 421), "36": rect(519, 420, 580, 481)]
- set gSDBinPiece to ["1": EMPTY, "2": EMPTY, "3": EMPTY, "4": EMPTY, "5": EMPTY, "6": EMPTY, "7": EMPTY, "8": EMPTY, "9": EMPTY, "10": EMPTY, "11": EMPTY, "12": EMPTY, "13": EMPTY, "14": EMPTY, "15": EMPTY, "16": EMPTY, "17": EMPTY, "18": EMPTY, "19": EMPTY, "20": EMPTY, "21": EMPTY, "22": EMPTY, "23": EMPTY, "24": EMPTY, "25": EMPTY, "26": EMPTY, "27": EMPTY, "28": EMPTY, "29": EMPTY, "30": EMPTY, "31": EMPTY, "32": EMPTY, "33": EMPTY, "34": EMPTY, "35": EMPTY, "36": EMPTY]
- end
-
- on BinLocation aPoint
- repeat with vI = 1 to 36
- set vRect to getProp(gSDBinGrid, vI)
- if inside(aPoint, vRect) then
- return vI
- end if
- end repeat
- return 0
- end
-
- on GetBinRect aPos
- global gSDBinGrid
- return getProp(gSDBinGrid, aPos)
- end
-
- on GetBinAt aPos
- global gSDBinPiece
- put "DUCK" && getProp(gSDBinPiece, aPos)
- return getProp(gSDBinPiece, aPos)
- end
-
- on PutBinAt aPos, aPiece
- global gSDBinPiece
- set vOld to getProp(gSDBinPiece, aPos)
- setaProp(gSDBinPiece, aPos, aPiece)
- return vOld
- end
-
- on PlaceBinPieces
- global gSDBinPiece, gSDBinGrid
- repeat with vI = 1 to 36
- set vPiece to getProp(gSDBinPiece, vI)
- if vPiece <> EMPTY then
- set vRect to GetBinRect(vI)
- set vSprite to NameToNum(vPiece)
- set the castNum of sprite vSprite to cast ("S_" & vPiece)
- set the locH of sprite vSprite to getAt(vRect, 1) + (the width of cast ("S_" & vPiece) / 2)
- set the locV of sprite vSprite to getAt(vRect, 2) + (the height of cast ("S_" & vPiece) / 2)
- set the visible of sprite vSprite to 1
- end if
- end repeat
- end
-
- on fillBin
- global gSDBinGrid, gSDBinPiece
- repeat with vI = 1 to 6
- repeat with vJ = 1 to 6
- set vName to vI & "_" & vJ
- set vLoc to string(random(36))
- repeat while getaProp(gSDBinPiece, vLoc) <> EMPTY
- set vLoc to string(random(36))
- end repeat
- setaProp(gSDBinPiece, vLoc, vName)
- end repeat
- end repeat
- end
-